home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 49
/
Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso
/
Aminet
/
util
/
boot
/
Bekuna.lha
/
bekuna1.5
/
showtx
< prev
next >
Wrap
Text File
|
2002-03-12
|
854b
|
28 lines
/* Funktion-SHOWTX (Zeigt Text in einem Fenster an) */
/* von Kuno Naumann (26.02.2002) */
/* call showtx(Zeit,Titel,Meldung[,Position][,Hintergrund]) */
/* Zeit in 1/100 s Position: ohne oder 0=mitte 1=oben-links 2=mitte-Maus */
if arg()<1 then return 0
call open(1,'awnpipe:texa1/xc')
p='cs' ; hg=""
if arg(4,'E') then do
if arg(4)=1 then p='tl'
if arg(4)=2 then p='cm'
end
if arg(5,'E') then hg=arg(5)
call writeln(1,' "Meldung" q defg m a so si 'p hg)
call writeln(1,'layout gt "'arg(2)'" v cj si so')
call writeln(1,'layout si so')
call writeln(1,'label lj gt "'arg(3)'" ss=2')
call writeln(1,'le')
call writeln(1,'space')
call writeln(1,'button gt " _OK " weiw=0 c')
call writeln(1,'le')
call writeln(1,'arexx gt "SHOWTX|quit"')
call writeln(1,'open')
if arg(1)>0 then call writeln(1,'tick 'arg(1))
else call writeln(1,'con')
call close(1)
exit 1